home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1994 January / PSL Monthly Shareware CD-ROM (Public Software Library) (January 1994).iso / pastnews / find.bat < prev    next >
DOS Batch File  |  1993-10-13  |  984b  |  26 lines

  1. echo off
  2. cls
  3. echo  
  4. echo To search past PsL News files for a program or other text, enter:
  5. echo   FGREP "[text]" [filespec1] [filespec2]
  6. echo  
  7. echo For example, to search all files for astronomy programs, you could enter:
  8. echo   FGREP "astronomy" *.*
  9. echo  
  10. echo Or to look for shareware author Joe Smith, you would enter:
  11. echo   FGREP "Joe Smith" *.*
  12. echo  
  13. echo To look for author Joe Smith for just 9/93, enter:
  14. echo   FGREP "joe smith" NEWS9309.*
  15. echo  
  16. echo To search just the Windows files for an astronomy program:
  17. echo   FGREP "astronomy" *.W?
  18. echo  
  19. echo To look through all files for a particular category for all months -
  20. echo   (for example: to search the Home and Business sections for "amortization"):
  21. echo   FGREP "amortization" *.HOM *.BIZ  or even just: FGREP "amort" *.HOM *.BIZ
  22. echo   (The shorter the text, the more likely you are to find matches.)
  23. echo  
  24. echo Type \VIEW FGREP.DOC for more info about using Chris Dunford's FGREP.
  25. echo  
  26.